Skip to main content

Retrieve Widgets from a Specific Dashboard

GET 

/visualization/dashboards/:id

This endpoint retrieves all widgets associated with a specific dashboard, identified by its unique dashboard ID. The response includes the widget IDs and details of each widget within the dashboard, allowing for subsequent metric retrieval operations on individual widgets.

Request

Path Parameters

    id integerrequired

    The unique ID of the dashboard for which the widgets need to be retrieved.

Responses

Successfully retrieved the list of widgets for the specified dashboard

Schema
    oneOf
    response-code integer
    status string
    result object[]
  • Array [
  • dashboard.name string
    dashboard.category string
    dashboard.access.type string
    dashboard.users integer[]
    dashboard.context object
    dashboard.widgets object[]
  • Array [
  • id integer
    x integer
    y integer
    h integer
    w integer
  • ]
  • id integer
  • ]
Loading...